projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8fe7325
)
(sql-default-directory): Fix type annotation.
author
Sam Steingold
<sds@gnu.org>
Tue, 9 Sep 2014 20:39:31 +0000
(16:39 -0400)
committer
Sam Steingold
<sds@gnu.org>
Tue, 9 Sep 2014 20:39:31 +0000
(16:39 -0400)
lisp/ChangeLog
patch
|
blob
|
history
lisp/progmodes/sql.el
patch
|
blob
|
history
diff --git
a/lisp/ChangeLog
b/lisp/ChangeLog
index ca7e1f7a930ddc6770424f0c84a4bd53809cd49e..12f0f5e321821291e6af345f0ae4c0268a8cf69f 100644
(file)
--- a/
lisp/ChangeLog
+++ b/
lisp/ChangeLog
@@
-1,3
+1,7
@@
+2014-09-09 Sam Steingold <sds@gnu.org>
+
+ * progmodes/sql.el (sql-default-directory): Fix type annotation.
+
2014-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
* progmodes/cc-awk.el: Remove unneeded cc-bytecomp use.
diff --git
a/lisp/progmodes/sql.el
b/lisp/progmodes/sql.el
index c4baef82e2785e11aa02bf5702ef76d010030780..4029b2e8d3b1caff940dba6d5025b140a87f3b7a 100644
(file)
--- a/
lisp/progmodes/sql.el
+++ b/
lisp/progmodes/sql.el
@@
-285,7
+285,7
@@
file. Since that is a plaintext file, this could be dangerous."
(defcustom sql-default-directory nil
"Default directory for SQL processes."
:version "24.5"
- :type '
string
+ :type '
(choice (const nil) string)
:group 'SQL
:safe 'stringp)